home *** CD-ROM | disk | FTP | other *** search
/ CD Loisirs 2 / CD Loisirs 02 / CD Loisirs CD 002.mdf / pc / nympheas / sources / s4_004aide.k < prev    next >
Encoding:
Text File  |  1994-01-01  |  810 b   |  59 lines

  1. object S4_004AIDE is MEDIADISTRIBUTOR
  2. has
  3.     
  4.     Finished()
  5.         do
  6.             --
  7.         end;
  8.     
  9. with
  10.     Duration is -1;
  11.     X is 0; Y is 0; Width is 640; Height is 480;
  12.     Items is [
  13.         S4A2_004_PIC,
  14.         S4A3_BOUTON_DEBUT
  15.     ];
  16. end;
  17.  
  18. object S4A2_004_PIC is MEDIADELEGATOR
  19. has
  20.     
  21.     OffScreen()
  22.         do
  23.             TRANSITION.Set(WipeTop, 300);
  24.             self.GoToBeginning();
  25.             self.Run(true);
  26.             self.Show(true);
  27.         end;
  28.     
  29.     Finished()
  30.         do
  31.             APPLICATION.GoBack(MEDIADISTRIBUTOR0);
  32.         end;
  33.     
  34. with
  35.     Target is C291_004_PIC;
  36.     Duration is 6000;
  37.     X is 0; Y is 0; Width is 640; Height is 480;
  38. end;
  39.  
  40. object S4A3_BOUTON_DEBUT is MEDIADELEGATOR
  41. has
  42.     
  43.     OffScreen()
  44.         do
  45.             self.Enable(true);
  46.             self.Show(true);
  47.         end;
  48.     
  49.     MouseUp(theX, theY)
  50.         do
  51.             APPLICATION.GoBack(MEDIADISTRIBUTOR0);
  52.         end;
  53.     
  54. with
  55.     Duration is -1;
  56.     X is 537; Y is 434; Width is 91; Height is 35;
  57. end;
  58.  
  59.